-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sourcery Starbot ⭐ refactored easyguyme/telegram-bot #1
base: master
Are you sure you want to change the base?
Conversation
if str(admin[0]) == 'none': | ||
pass | ||
else: | ||
if str(admin[0]) != 'none': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function handle_text
refactored with the following changes:
- Swap if/else to remove empty if body (
remove-pass-body
)
if message.chat.type == "private" and message.from_user.id in superadmins: | ||
warnings = db.all_warnings() | ||
text = "All warnings:\n\n" | ||
for warning in warnings: | ||
if str(warning[0]) == 'none': | ||
pass | ||
else: | ||
text += "<b>@%s</b>: %s\n" % (str(warning[0]), str(warning[1])) | ||
splitted_text = util.split_string(text, 3000) | ||
for text in splitted_text: | ||
bot.send_message(message.chat.id, text, parse_mode='HTML') | ||
if ( | ||
message.chat.type != "private" | ||
or message.from_user.id not in superadmins | ||
): | ||
return | ||
warnings = db.all_warnings() | ||
text = "All warnings:\n\n" | ||
for warning in warnings: | ||
if str(warning[0]) != 'none': | ||
text += "<b>@%s</b>: %s\n" % (str(warning[0]), str(warning[1])) | ||
splitted_text = util.split_string(text, 3000) | ||
for text in splitted_text: | ||
bot.send_message(message.chat.id, text, parse_mode='HTML') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function handle_text
refactored with the following changes:
- Add guard clause (
last-if-guard
) - Swap if/else to remove empty if body (
remove-pass-body
)
warnings = self.c.fetchall() | ||
return warnings | ||
return self.c.fetchall() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function DBHelper.all_warnings
refactored with the following changes:
- Inline variable that is immediately returned (
inline-immediately-returned-variable
)
admins = self.c.fetchall() | ||
return admins | ||
return self.c.fetchall() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function DBHelper.all_admins
refactored with the following changes:
- Inline variable that is immediately returned (
inline-immediately-returned-variable
)
Thanks for starring sourcery-ai/sourcery ✨ 🌟 ✨
Here's your pull request refactoring your most popular Python repo.
If you want Sourcery to refactor all your Python repos and incoming pull requests install our bot.
Review changes via command line
To manually merge these changes, make sure you're on the
master
branch, then run: